home *** CD-ROM | disk | FTP | other *** search
/ Time Warp / Time Warp.iso / pc / timewarp / intro.dxr / 00046_pause button.ls < prev    next >
Encoding:
Text File  |  1997-05-23  |  243 b   |  12 lines

  1. on mouseUp
  2.   if the movieRate of sprite 5 <> 0 then
  3.     set the movieRate of sprite 5 to 0
  4.     updateStage()
  5.   else
  6.     if the movieRate of sprite 5 = 0 then
  7.       set the movieRate of sprite 5 to 1
  8.       updateStage()
  9.     end if
  10.   end if
  11. end
  12.